home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 171 (1991-09-10)(Manewaldt, A.)(DE)(PD).zip / Taifun 171 (1991-09-10)(Manewaldt, A.)(DE)(PD).adf / FracBlank / StringFormat.asm < prev   
Assembly Source File  |  1991-09-27  |  726b  |  44 lines

  1. * $Revision Header * Header built automatically - do not edit! *************
  2. *
  3. *    (C) Copyright 1990 by Olaf Barthel & MXM
  4. *
  5. *    Name .....: StringFormat.asm
  6. *    Created ..: Friday 18-Jun-91 15:28
  7. *    Revision .: 1
  8. *
  9. *    Date            Author          Comment
  10. *    =========       ========        ====================
  11. *    18-Jun-91    Olsen        Created this file!
  12. *
  13. * $Revision Header *********************************************************
  14.  
  15. CALL    macro
  16.     xref    _LVO\1
  17.     jsr    _LVO\1(a6)
  18.     endm
  19.  
  20.     csect    text,0,0,1,2
  21.  
  22.     xdef    _SPrintf
  23.  
  24. _SPrintf:
  25.     movem.l    a2/a3/a6,-(sp)
  26.  
  27.     move.l     4+12(sp),a3
  28.     move.l     8+12(sp),a0
  29.     lea    12+12(sp),a1
  30.     lea    stuffchar(pc),a2
  31.  
  32.     move.l    4,a6
  33.     CALL    RawDoFmt
  34.  
  35.     movem.l    (sp)+,a2/a3/a6
  36.  
  37.     rts
  38.  
  39. stuffchar:
  40.     move.b    d0,(a3)+
  41.     rts
  42.  
  43.     end
  44.